home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / parted / unit.h < prev   
C/C++ Source or Header  |  2006-04-20  |  2KB  |  69 lines

  1. /*
  2.     libparted - a library for manipulating disk partitions
  3.     Copyright (C) 2005 Free Software Foundation, Inc.
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  18. */
  19.  
  20. #ifndef PED_UNIT_H_INCLUDED
  21. #define PED_UNIT_H_INCLUDED
  22.  
  23. #include <parted/device.h>
  24.  
  25. #include <stdarg.h>
  26. #include <stdio.h>
  27.  
  28. #define PED_SECTOR_SIZE   512LL
  29. #define PED_KILOBYTE_SIZE 1000LL
  30. #define PED_MEGABYTE_SIZE 1000000LL
  31. #define PED_GIGABYTE_SIZE 1000000000LL
  32. #define PED_TERABYTE_SIZE 1000000000000LL
  33.  
  34.  
  35. typedef enum {
  36.     PED_UNIT_SECTOR,
  37.     PED_UNIT_BYTE,
  38.     PED_UNIT_KILOBYTE,
  39.     PED_UNIT_MEGABYTE,
  40.     PED_UNIT_GIGABYTE,
  41.     PED_UNIT_TERABYTE,
  42.     PED_UNIT_COMPACT,
  43.     PED_UNIT_CYLINDER,
  44.     PED_UNIT_CHS,
  45.     PED_UNIT_PERCENT
  46. } PedUnit;
  47.  
  48. #define PED_UNIT_FIRST PED_UNIT_SECTOR
  49. #define PED_UNIT_LAST PED_UNIT_PERCENT
  50.  
  51. extern long long ped_unit_get_size (PedDevice* dev, PedUnit unit);
  52. extern const char* ped_unit_get_name (PedUnit unit);
  53. extern PedUnit ped_unit_get_by_name (const char* unit_name);
  54.  
  55. extern void ped_unit_set_default (PedUnit unit);
  56. extern PedUnit ped_unit_get_default ();
  57.  
  58. extern char* ped_unit_format (PedDevice* dev, PedSector sector);
  59. extern char* ped_unit_format_custom (PedDevice* dev, PedSector sector,
  60.                      PedUnit unit);
  61.  
  62. extern int ped_unit_parse (const char* str, PedDevice* dev, PedSector* sector,
  63.                PedGeometry** range);
  64. extern int ped_unit_parse_custom (const char* str, PedDevice* dev,
  65.                   PedUnit unit, PedSector* sector,
  66.                   PedGeometry** range);
  67.  
  68. #endif /* PED_UNIT_H_INCLUDED */
  69.